home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
-
- <!-- ***** BEGIN LICENSE BLOCK *****
- - Version: MPL 1.1
- -
- - The contents of this file are subject to the Mozilla Public License Version
- - 1.1 (the "License"); you may not use this file except in compliance with
- - the License. You may obtain a copy of the License at
- - http://www.mozilla.org/MPL/
- -
- - Software distributed under the License is distributed on an "AS IS" basis,
- - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- - for the specific language governing rights and limitations under the License.
- -
- - The Original Code is the Autocomplete Manager extension.
- -
- - The Initial Developer of the Original Code is
- - Nikitas Liogkas <nikitas@acm.org>.
- - Portions created by the Initial Developer are Copyright (C) 2005-2008
- - the Initial Developer. All Rights Reserved.
- -
- - Contributor(s):
- - Version 2.3
- -
- - ***** END LICENSE BLOCK ***** -->
-
- <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
-
- <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
- id="ACM_AddEntry"
- title="Add history entry"
- buttons="accept, cancel"
- resizable="yes"
- persist="width height screenX screenY"
- ondialogaccept="acm_onAddOK();">
-
- <script type="application/javascript; version=1.7" src="chrome://acmanager/content/rdfUtils.js"/>
- <script type="application/javascript" src="chrome://acmanager/content/treeUtils.js"/>
- <script type="application/javascript" src="chrome://acmanager/content/options.js"/>
- <script type="application/javascript" src="chrome://acmanager/content/acpopup.js"/>
-
- <!-- do not remove this id, since we use it identify this dialog in treeUtils.js -->
- <groupbox id="acm_addEntryBox">
- <caption label="Information for the new entry"/>
- <grid flex="1">
- <columns>
- <column/>
- <column flex="1"/>
- </columns>
-
- <!-- If you change the ids of these textboxes, also change those
- at the top of preferences.js -->
- <rows>
- <row align="center">
- <hbox align="center" pack="end"><label value="Title:"/></hbox>
- <textbox id="add_he_title" class="plain"/>
- </row>
-
- <row align="center">
- <hbox align="center" pack="end"><label value="Page Address:"/></hbox>
- <textbox id="add_he_address" class="plain"/>
- </row>
-
- <!-- <row align="center">
- <hbox align="center" pack="end"><label value="First Visit Date:"/></hbox>
- <textbox id="add_he_first_visit" class="plain"/>
- </row>
-
- <row align="center">
- <hbox align="center" pack="end"><label value="Last Visit Date:"/></hbox>
- <textbox id="add_he_last_visit" class="plain"/>
- </row>
-
- <row align="center">
- <hbox align="center" pack="end"><label value="Number of Visits:"/></hbox>
- <textbox id="add_he_visit_count" class="plain"/>
- </row> -->
- </rows>
-
- </grid>
- </groupbox>
-
- </dialog>
-